* {
    box-sizing: border-box;
}

body {
    background-color: black;
}
header {
    text-align: center;
    width: 100%;
    height: 100px;
    font-weight: bold;
    padding-top: 15px;
    background-color: black;
    color: aliceblue;
    font-size: 35px;
    padding: 30px;
}

#menu {
    width: 100%;
    margin: auto;
    padding: 30px;
    border: solid 1px;
    background-color: rgb(57, 57, 99);
    height: 100px;
    display: flex;
    justify-content: space-evenly;

    
} 

.menu-item {
    width: 18%;
    background-color: rgb(1, 1, 27);
    padding-top: 10px;
    padding-bottom: 10px;
    max-height: min-content;
    text-align: center;
    position: relative;
    color: rgb(223, 229, 255);
    
    
}

.menu-item a {
    font-weight: bold;
    text-decoration: none;
    color: rgb(223, 229, 255);
}

.menu-item:hover {
    background-color:rgb(174, 181, 211);
    color:rgb(1, 1, 27);

}

.menu-item:hover a {
    color:rgb(1, 1, 27);

}

.menu-item-current {
     font-weight: bold;
     color: rgb(1, 1, 27);
     background-color:rgb(223, 229, 255);
     width: 18%;
     padding-top: 10px;
     padding-bottom: 10px;
     max-height: min-content;
     text-align: center;
     position: relative;
}
.menu-item-current a {
    font-weight: bold;
    text-decoration: none;
    color:  rgb(1, 1, 27)
}

.sub {
    position: absolute;
    top: 40px;
    left:0;
    width: 100%;
    display: none;
    height: 50px;
    
}

.menu-item:hover .sub {
   display: block;
}

.sub-menu-item {
     width: 100%;
     background-color: rgb(79, 83, 148);
     padding-top: 10px;
     padding-bottom: 10px;
     text-align: center;
}


.bio{ display: flex;
justify-content: space-between;
background-color: black;
}

.bioimage {
    width: 50%;
    margin-top: 5%;
}

.biotext {
    width: 50%;
    font-size: large;
    background-color: #333;
    color: white;
    margin: 5%;
    padding: 20px;
}
.biotext img { height: 25%;}

.sectionheader {
    text-align: center;
    font-weight: bold;
    color: aliceblue;
    background-color: rgb(57, 57, 99);
    padding-top: 20px;
    height: 75px;
    font-size: 35px;

}

.tour1 {display: flex;
    justify-content: space-between;
}

.day{
color: white;
text-align: left;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
padding: 20px;
}

.description {
color: white;
text-align: center;
padding: 20px;
font-size: xx-large;
}

.time {
color: white;
text-align: right;
padding: 20px;
}

img {width: 100%;
    height: 500px;
}



.categories {
    text-align: center;
    font-weight: bold;
    color: aliceblue;
    background-color: rgb(61, 52, 145);
    padding-top: 20px;
    height: 75px;
    font-size: 35px;
    
}


.scroll-container {
background-color: #333;
overflow: auto;
white-space: nowrap;
padding: 10px;
height: fit-content;
}

.scroll-container img {
padding: 10px;
width: 50%;

}

footer {
text-align: center;
width: 100%;
height: 75px;
padding-top: 5px;
color: black;
background-color: rgb(218, 222, 240);
}
